A graphical context menu. More...
Public Member Functions | |
ContextMenu () | |
virtual | ~ContextMenu () |
Component * | getParentComponent () const |
virtual Item * | getItem (unsigned int index) const =0 |
virtual unsigned int | getItemCount () const =0 |
void | setAutomaticSizing (bool value) |
virtual Item * | addItem (const nkMemory::StringView &label, const std::function< void()> &callback)=0 |
virtual void | addSeparator ()=0 |
virtual void | clearItems ()=0 |
virtual void | pop ()=0 |
virtual void | recomputeSizeToFitItems ()=0 |
virtual void | exportClassToTree (nkExport::Node *rootNode) override |
virtual void | importClassFromTree (nkExport::Node *rootNode) override |
![]() | |
Component () | |
virtual | ~Component () |
Layout * | getLayout () const |
Theme * | getTheme () const |
nkMaths::Point | getPositionInParent () const |
nkMaths::Point | getPositionInScreen () const |
int | getWidth () const |
int | getHeight () const |
nkMaths::Rectangle | getAreaInParent () const |
nkMaths::Rectangle | getAreaInScreen () const |
virtual nkMaths::Point | getBorderExtents () const |
virtual int | getLayoutAllowedWidth () const |
virtual int | getLayoutAllowedHeight () const |
virtual int | getLayoutAllowedOffsetX () const |
virtual int | getLayoutAllowedOffsetY () const |
bool | isInitialized () const |
Component * | getParentComponent () const |
COMPONENT_TYPE | getComponentType () const |
nkMemory::StringView | getComponentName () const |
bool | getVisibility () const |
virtual nkMemory::StringView | getLabel () const |
void * | getData () const |
bool | isEnabled () const |
bool | isForegroundWindow () const |
unsigned int | getZDepth () const |
bool | getVisibleOnLoad () const |
virtual Layout * | setLayout (LAYOUT_TYPE layoutType) |
virtual void | setTheme (Theme *theme) |
virtual void | setPositionInParent (nkMaths::Point position) |
virtual void | setPositionInScreen (nkMaths::Point position) |
virtual void | setSize (int width, int height) |
virtual void | setWidth (int width) |
virtual void | setHeight (int height) |
void | setMinSize (unsigned int width, unsigned int height) |
void | setMaxSize (unsigned int width, unsigned int height) |
void | setRatio (float widthOverHeight) |
virtual void | setAreaInParent (const nkMaths::Rectangle &area) |
virtual void | setAreaInScreen (const nkMaths::Rectangle &area) |
virtual void | setParentComponent (Component *parent, bool makeItVisible=true) |
virtual void | setLabel (const nkMemory::StringView &label) |
void | setComponentName (const nkMemory::StringView &name) |
virtual void | setVisibility (bool value) |
void | setData (void *data) |
void | setEnabled (bool value) |
void | setVisibleOnLoad (bool value) |
void | addChild (Component *child, bool makeItVisible=true) |
void | removeChild (Component *child) |
void | removeChild (unsigned int index) |
Component * | getChild (unsigned int index) |
unsigned int | getChildIndex (Component *child) |
void | unloadWithChildren () |
void | loadWithChildren () |
void | updateZDepth () |
void | bringToForeground () |
void | focusWindow () |
nkMaths::Point | getCoordRelativeFromAbsolute (const nkMaths::Point &absCoords) |
nkMaths::Point | getCoordAbsoluteFromRelative (const nkMaths::Point &relCoords) |
virtual void | load ()=0 |
virtual void | unload ()=0 |
virtual void | updateWindow () |
nkImages::Image | paintToImage (bool withFrame=false) |
void | simulateEvent (const InputDescriptor &inputDescription) |
void | onSized () |
virtual void | exportIntrospection (nkExport::Node *rootNode) |
![]() | |
Exportable () | |
virtual | ~Exportable () |
A graphical context menu.
nkWinUi::ContextMenu::ContextMenu | ( | ) |
Constructor.
|
virtual |
Destructor.
Component* nkWinUi::ContextMenu::getParentComponent | ( | ) | const |
|
pure virtual |
Getter for a given item.
index | The index of the item to retrieve. |
|
pure virtual |
void nkWinUi::ContextMenu::setAutomaticSizing | ( | bool | value | ) |
Sets whether the menu should auto size itself when popping out. This will ensure the menu is having the right size for the items it showcases.
value | If the menu should auto size itself (true) or not (false). |
|
pure virtual |
Adds an item to the menu. In the menu, items appear in the order they are declared.
label | The label of the item to create. |
callback | The callback if the item is clicked while the menu is displayed. |
|
pure virtual |
Adds a separator.
|
pure virtual |
Clear all items registered in the menu to start fresh.
|
pure virtual |
Makes the item pop on screen.
|
pure virtual |
Recomputes the component's area to fit the items currently registered. Can be called to manually trigger an automatic sizing.
|
overridevirtual |
Basic export capability.
rootNode | The root of the tree to populate. |
Reimplemented from nkWinUi::Component.
|
overridevirtual |
Basic import capability.
rootNode | The root of the tree to import from. |
Reimplemented from nkWinUi::Component.